home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Python / traceback.c < prev   
Text File  |  1995-12-21  |  6KB  |  272 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* Traceback implementation */
  26.  
  27. #include "allobjects.h"
  28.  
  29. #include "sysmodule.h"
  30. #include "compile.h"
  31. #include "frameobject.h"
  32. #include "traceback.h"
  33. #include "structmember.h"
  34. #include "osdefs.h"
  35.  
  36. typedef struct _tracebackobject {
  37.     OB_HEAD
  38.     struct _tracebackobject *tb_next;
  39.     frameobject *tb_frame;
  40.     int tb_lasti;
  41.     int tb_lineno;
  42. } tracebackobject;
  43.  
  44. #define OFF(x) offsetof(tracebackobject, x)
  45.  
  46. static struct memberlist tb_memberlist[] = {
  47.     {"tb_next",    T_OBJECT,    OFF(tb_next)},
  48.     {"tb_frame",    T_OBJECT,    OFF(tb_frame)},
  49.     {"tb_lasti",    T_INT,        OFF(tb_lasti)},
  50.     {"tb_lineno",    T_INT,        OFF(tb_lineno)},
  51.     {NULL}    /* Sentinel */
  52. };
  53.  
  54. static object *
  55. tb_getattr(tb, name)
  56.     tracebackobject *tb;
  57.     char *name;
  58. {
  59.     return getmember((char *)tb, tb_memberlist, name);
  60. }
  61.  
  62. static void
  63. tb_dealloc(tb)
  64.     tracebackobject *tb;
  65. {
  66.     XDECREF(tb->tb_next);
  67.     XDECREF(tb->tb_frame);
  68.     DEL(tb);
  69. }
  70.  
  71. #define Tracebacktype PyTraceBack_Type
  72. #define is_tracebackobject PyTraceBack_Check
  73.  
  74. typeobject Tracebacktype = {
  75.     OB_HEAD_INIT(&Typetype)
  76.     0,
  77.     "traceback",
  78.     sizeof(tracebackobject),
  79.     0,
  80.     (destructor)tb_dealloc, /*tp_dealloc*/
  81.     0,        /*tp_print*/
  82.     (getattrfunc)tb_getattr, /*tp_getattr*/
  83.     0,        /*tp_setattr*/
  84.     0,        /*tp_compare*/
  85.     0,        /*tp_repr*/
  86.     0,        /*tp_as_number*/
  87.     0,        /*tp_as_sequence*/
  88.     0,        /*tp_as_mapping*/
  89. };
  90.  
  91. static tracebackobject *
  92. newtracebackobject(next, frame, lasti, lineno)
  93.     tracebackobject *next;
  94.     frameobject *frame;
  95.     int lasti, lineno;
  96. {
  97.     tracebackobject *tb;
  98.     if ((next != NULL && !is_tracebackobject(next)) ||
  99.             frame == NULL || !is_frameobject(frame)) {
  100.         err_badcall();
  101.         return NULL;
  102.     }
  103.     tb = NEWOBJ(tracebackobject, &Tracebacktype);
  104.     if (tb != NULL) {
  105.         XINCREF(next);
  106.         tb->tb_next = next;
  107.         XINCREF(frame);
  108.         tb->tb_frame = frame;
  109.         tb->tb_lasti = lasti;
  110.         tb->tb_lineno = lineno;
  111.     }
  112.     return tb;
  113. }
  114.  
  115. static tracebackobject *tb_current = NULL;
  116.  
  117. int
  118. tb_here(frame)
  119.     frameobject *frame;
  120. {
  121.     tracebackobject *tb;
  122.     tb = newtracebackobject(tb_current, frame, frame->f_lasti, frame->f_lineno);
  123.     if (tb == NULL)
  124.         return -1;
  125.     XDECREF(tb_current);
  126.     tb_current = tb;
  127.     return 0;
  128. }
  129.  
  130. object *
  131. tb_fetch()
  132. {
  133.     object *v;
  134.     v = (object *)tb_current;
  135.     tb_current = NULL;
  136.     return v;
  137. }
  138.  
  139. int
  140. tb_store(v)
  141.     object *v;
  142. {
  143.     if (v != NULL && !is_tracebackobject(v)) {
  144.         err_badcall();
  145.         return -1;
  146.     }
  147.     XDECREF(tb_current);
  148.     XINCREF(v);
  149.     tb_current = (tracebackobject *)v;
  150.     return 0;
  151. }
  152.  
  153. static void
  154. tb_displayline(f, filename, lineno, name)
  155.     object *f;
  156.     char *filename;
  157.     int lineno;
  158.     char *name;
  159. {
  160.     FILE *xfp;
  161.     char linebuf[1000];
  162.     int i;
  163. #ifdef MPW
  164.     /* This is needed by MPW's File and Line commands */
  165. #define FMT "  File \"%.900s\"; line %d # in %s\n"
  166. #else
  167.     /* This is needed by Emacs' compile command */
  168. #define FMT "  File \"%.900s\", line %d, in %s\n"
  169. #endif
  170.     xfp = fopen(filename, "r");
  171.     if (xfp == NULL) {
  172.         /* Search tail of filename in sys.path before giving up */
  173.         object *path;
  174.         char *tail = strrchr(filename, SEP);
  175.         if (tail == NULL)
  176.             tail = filename;
  177.         else
  178.             tail++;
  179.         path = sysget("path");
  180.         if (path != NULL && is_listobject(path)) {
  181.             int npath = getlistsize(path);
  182.             int taillen = strlen(tail);
  183.             char namebuf[MAXPATHLEN+1];
  184.             for (i = 0; i < npath; i++) {
  185.                 object *v = getlistitem(path, i);
  186.                 if (is_stringobject(v)) {
  187.                     int len;
  188.                     len = getstringsize(v);
  189.                     if (len + 1 + taillen >= MAXPATHLEN)
  190.                         continue; /* Too long */
  191.                     strcpy(namebuf, getstringvalue(v));
  192.                     if (strlen(namebuf) != len)
  193.                         continue; /* v contains '\0' */
  194.                     if (len > 0 && namebuf[len-1] != SEP)
  195.                         namebuf[len++] = SEP;
  196.                     strcpy(namebuf+len, tail);
  197.                     xfp = fopen(namebuf, "r");
  198.                     if (xfp != NULL) {
  199.                         filename = namebuf;
  200.                         break;
  201.                     }
  202.                 }
  203.             }
  204.         }
  205.     }
  206.     sprintf(linebuf, FMT, filename, lineno, name);
  207.     writestring(linebuf, f);
  208.     if (xfp == NULL)
  209.         return;
  210.     for (i = 0; i < lineno; i++) {
  211.         if (fgets(linebuf, sizeof linebuf, xfp) == NULL)
  212.             break;
  213.     }
  214.     if (i == lineno) {
  215.         char *p = linebuf;
  216.         while (*p == ' ' || *p == '\t' || *p == '\014')
  217.             p++;
  218.         writestring("    ", f);
  219.         writestring(p, f);
  220.         if (strchr(p, '\n') == NULL)
  221.             writestring("\n", f);
  222.     }
  223.     fclose(xfp);
  224. }
  225.  
  226. static void
  227. tb_printinternal(tb, f, limit)
  228.     tracebackobject *tb;
  229.     object *f;
  230.     int limit;
  231. {
  232.     int depth = 0;
  233.     tracebackobject *tb1 = tb;
  234.     while (tb1 != NULL) {
  235.         depth++;
  236.         tb1 = tb1->tb_next;
  237.     }
  238.     while (tb != NULL && !intrcheck()) {
  239.         if (depth <= limit)
  240.             tb_displayline(f,
  241.                 getstringvalue(tb->tb_frame->f_code->co_filename),
  242.                 tb->tb_lineno,
  243.                 getstringvalue(tb->tb_frame->f_code->co_name));
  244.         depth--;
  245.         tb = tb->tb_next;
  246.     }
  247. }
  248.  
  249. int
  250. tb_print(v, f)
  251.     object *v;
  252.     object *f;
  253. {
  254.     object *limitv;
  255.     int limit = 1000;
  256.     if (v == NULL)
  257.         return 0;
  258.     if (!is_tracebackobject(v)) {
  259.         err_badcall();
  260.         return -1;
  261.     }
  262.     limitv = sysget("tracebacklimit");
  263.     if (limitv && is_intobject(limitv)) {
  264.         limit = getintvalue(limitv);
  265.         if (limit <= 0)
  266.             return 0;
  267.     }
  268.     writestring("Traceback (innermost last):\n", f);
  269.     tb_printinternal((tracebackobject *)v, f, limit);
  270.     return 0;
  271. }
  272.